home *** CD-ROM | disk | FTP | other *** search
- ; ************************************************
- ; *
- ; * SystemPrefs - HD Install Script
- ; *
- ; * $VER: Install-System 1.10
- ; *
- ; * Script written by Richard Körber
- ; *
- ; ************************************************
-
-
- (set ToolSource "System")
- (set CLIToolSource "C/SysPrefs")
- (set LibSource1 "Libs/provision.library")
- (set LibSource2 "Libs/reqtools.library")
-
- (set CopyLib1Prompt "provision.library kopieren?")
- (set CopyLib2Prompt "reqtools.library kopieren?")
- (set ToolDirPrompt "Wohin soll System kopiert werden?")
- (set CLIDirPrompt "Wohin soll SysPrefs kopiert werden?")
- (set ToolCopyPrompt "Kopiere System...")
- (set CLICopyPrompt "Kopiere SysPrefs...")
-
-
- (set ToolDir (askdir
- (prompt ToolDirPrompt)
- (help @askdir-help)
- (default "SYS:Prefs/")
- ))
-
- (set CLIToolDir (askdir
- (prompt CLIDirPrompt)
- (help @askdir-help)
- (default "SYS:C/")
- ))
-
- (copyfiles
- (prompt ToolCopyPrompt)
- (help @copyfiles-help)
- (source ToolSource)
- (dest ToolDir)
- (infos)
- )
-
- (copyfiles
- (prompt CLICopyPrompt)
- (help @copyfiles-help)
- (source CLIToolSource)
- (dest CLIToolDir)
- )
-
- (copylib
- (prompt CopyLib1Prompt)
- (help @copylib-help)
- (source LibSource1)
- (dest "LIBS:")
- (confirm)
- )
-
- (copylib
- (prompt CopyLib2Prompt)
- (help @copylib-help)
- (source LibSource2)
- (dest "LIBS:")
- (confirm)
- )
-
- (message "Bitte fügen Sie in die Startup-Sequence die Zeile\n\n"
- " SysPrefs >NIL: \n\n"
- "direkt vor 'IPrefs' ein.")
-